home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2007 January, February, March & April
/
Chip-Cover-CD-2007-02.iso
/
Pakiet multimedia
/
Linux LiveCD
/
GeeXboX 1.0 EN
/
geexbox-1.0-en.i386.iso
/
GEEXBOX
/
etc
/
init.d
/
54_ftp
< prev
next >
Wrap
Text File
|
2006-06-21
|
261b
|
17 lines
#!/bin/sh
#
# start ftp server
#
# runlevels: geexbox, debug
# get options
test -f /etc/network || exit 1
. /etc/network
if test "$FTP_SERVER" = "yes" -a -f /etc/bftpd.conf; then
echo "### Starting FTP server ###"
bftpd -d -c /etc/bftpd.conf &
fi
exit 0